@charset "UTF-8";

body {

}
a {
    text-decoration: none;
}

/* 页面顶部导航条 */
#topbar {
    height: 70px;
    align-items: center;
}
#topbar a {
    font-size: 16px;
    display: inline-flex;
    height: 65%;
    align-items: center;
}
#topbar a,#topbar a:visited {
    border-bottom: #fff 2px solid;
    color: #3e3e3e;
}
#topbar a:hover,#topbar a.active {
    color: #fc4511;
    border-bottom: #fc4511 2px solid;
    cursor:pointer;
}


/* 首页关于名图 */
#about {
    padding: 100px 0;
}
#about .about-title {
    width: 55%;
}
#about .about-content {
    font-size: 16px;
    text-indent: 32px;
    line-height: 2;
    color: #767275;
}
#about .about-image {
    width: 90%;
}
#about .about-link-more {
    color: #fc4514;
    font-size: 20px;
    font-weight: bold;
}

/* 首页产品中心 */
#product {
    background: #f3f3f3;
    padding: 70px 0;
}
#product .product-category {
    text-align: center;
    padding: 30px 0;
}
#product .product-category a {
    position: relative;
}
#product .product-category a:hover {
    overflow: hidden;
}
#product .product-category a:hover img {
    animation: heartBeat 3s;
}
#product .product-category a:hover h2{
    position: relative;
    z-index: 3;
    color: #FFF;
}
#product .product-category a:hover h5{
    position: relative;
    z-index: 2;
    color: #FFF;
}
#product .product-category a:hover .description{
    display: flex;
    background: linear-gradient(0deg, #000, rgba(0,0,0,0.4));
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 0 30px;
    animation: productCategoryHover 0.3s forwards;
}
@keyframes productCategoryHover {
    0% {
        bottom: -100%;
    }
    100% {
        bottom: 0;
    }
}

#product .product-category a .description {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}
#product .product-category a h2 {
    padding: 30px 0 10px;
    color: #343434;
    margin: 0;
}
#product .product-category a h5 {
    padding: 5px 0;
    color: #a2a2a2;
    font-weight: normal;
    margin: 0;
}

/* 首页新闻资讯 */
#news {
    margin-bottom: 50px;
    background: #f8f8f8;
}
#news .news-title {
    padding-bottom: 50px;
}
#news .news-content {
    font-size: 18px;
    text-indent: 32px;
    line-height: 2;
    padding-top: 40px;
    color: #767275;
}
#news .news-link-more {
    color: #fc4514;
    font-size: 20px;
    font-weight: bold;
    margin-top: 40px;
}
#news .news-list {
    padding: 30px 0;
}
#news .news-list a {
    color: #000;
    height: 100%;
    display: flex;
    padding: 0;
}
#news .news-list .card {
    padding: 0;
    background: #eeeeed;
    border: none;
    border-radius: 0;
    height: 100%;
}
#news .news-list .card .card-body .card-title {
    font-size: 20px;
    height: 56px;
}
#news .news-list .card .card-body .card-text {
    color: #9b9b9b;
}
#news .news-list .card span.bi  {
    color: #fc4514;
}
#news .news-list .card:hover  {
    background: #fc4514;
    color: #FFF;
}
#news .news-list .card:hover span.bi {
    color: #fff;
}

/* 底部版权 */
#footer {
    background: #343333;
    color: #959596;
}


/* 公司简介页面 */
#page-about {
    padding-bottom: 50px;
}
#page-about .page-about-wrap {
    display: grid;
    width: 100%;
    grid-template-rows: repeat(4, auto [row-start]);
    grid-template-columns: repeat(3,auto [col-start]);
    grid-template-areas: 
        "s1 s1 s2 s2"
        "s3 s3 s4 s4"
        "s5 s6 s4 s4"
        "s5 s7 s7 s7"
    ;
    grid-gap: 10px;
}
.item {
    background-color: blueviolet;
}
.item img {
    width: 100%;
    height: 100%;
}
.s1 {
    grid-area: s1;
}
.s2 {
    grid-area: s2;
}
.s3 {
    grid-area: s3;
}
.s4 {
    grid-area: s4;
}
.s5 {
    grid-area: s5;
}
.s6 {
    grid-area: s6;
}
.s7 {
    grid-area: s7;
}
    
/* 资质认证页面 */
#page-qualification {
    padding: 50px 0;
}

/* 产品中心列表页面 */
#page-product-list {
    padding-top: 10px;
    padding-bottom: 50px;
}

/* 产品分类导航 */
.product-menu-list {}
.product-menu-list a{
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 120px;
    justify-content: center;
    border: solid 1px #d4d4d4;
    position: relative;
}
.product-menu-list div+div>a{
    border-left: none;
}
.product-menu-list a img{
}
.product-menu-list a span{
    color: #666;
    font-size: 14px;
    display: inline-flex;
    padding-top: 10px;
}
.product-menu-list a.active::before{
    content: " ";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-bottom: 4px solid #fc4514;
}
.product-menu-list a:hover::after {
    content: " ";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    animation: productMenuListHover 1s forwards;
    border-bottom: 4px solid transparent;
}
@keyframes productMenuListHover {
    0% {
        border-bottom-color: #ffffff;
        border-width: 30px;
    }
    100% {
        border-width: 4px;
        border-bottom-color: #fc4514;
    }
}

/* 产品列表 */
.product-list {
    padding-top: 50px;
}
.product-list div {
    padding: 5px;
    position: relative;
    overflow: hidden;
}
.product-list a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    background: #fff;
    padding: 50px 0;
}
.product-list a img {
    width: 95%;
}
.product-list a img:hover {
    animation: pulse 1.5s;
}
.product-list a h6 {
    color: #333;
    font-weight: bold;
    font-size: 16px;
    padding-top: 15px;
}
.product-list a span {
    color: #999;
    font-size: 14px;
}
.product-list div:hover {
    box-shadow: 0 0 6px #dadada;
}
.product-list div:hover::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,#8bdeda,#43add0,#998ee0,#e17dc2,#ef9393);
    animation-name: rotateIn;
    animation-duration: 0.75s;
    content: ' ';
    left: 0;
    top: 0;
    z-index: -1;
}

/* 产品详情 */
.product-show {
    border-radius: 10px;
    background: url(../img/product_show_bg.png);
    min-height: 400px;
}
.product-show .product-show-title {
    font-weight: normal;
    line-height: 2;
}
.product-show .product-show-remark {
    display: inline-flex;
    font-size: 14px;
    font-weight: normal;
    color: #ffffff;
    border-radius: 5px;
    background: #fc4511;
    padding: 0 10px;
    line-height: 2;
    padding-right: 100px;
}
.product-show .product-show-content {
    padding: 10px 0;
    font-size: 16px;
    color: #797979;
}
.product-show .product-show-content>* {
    line-height: 2.2 !important;
}

.product-show .product-show-image {
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 400px;
}
.product-show .product-show-image img {
    z-index: 9;
    width: 100%;
    display: inline-flex;
}

.product-show .product-show-image::after {
    content: " ";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    border-radius: 50%;
    z-index: 0;
}

/* 新闻列表页面 */
#page-news-list {}
.news-list {
    padding: 20px 0;
}
.news-list li {
    padding: 10px 0;
}
.news-list a {
    background: #F8F8F8;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}
.news-list .news-list-title {
    color: #000;
    line-height: 2;
}
.news-list .news-list-remark {
    position: relative;
    color: #585858;
    font-size: 15px;
    display: inline-flex;
}
.news-list .news-list-switch {
    position: absolute;
    right: 20px;
    bottom: 10px;
    color: #fc4511;
}
.news-list a:hover {
    padding: 10px 0;
    color: #fff !important;
    background: transparent;
}
.news-list a:hover * {
    color: #fff !important;
}
.news-list a:hover::after {
    content:" ";
    position: absolute;
    display: block;
    width: 200%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    animation: newsHover 0.7s forwards;
}
@keyframes newsHover {
    0% {
        left: -200%;
        background: linear-gradient(90deg,#fc4511 70%,#fff);
    }
    100% {
        left: 0;
        background: linear-gradient(90deg,#fc4511 100%,#fff)
    }
}


/* 联系我们页面 */
#page-contact {
    padding: 30px 0;
}

#page-contact h1 {
    display: flex;
    width: 100%;
    line-height: 4;
    font-size: 30px;
    color: #fc4511;
    justify-content: center;
}
#page-contact h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
#page-contact .contact-list li {
    font-size: 18px;
    line-height: 2.5;
    color: #414141;
}
#page-contact .contact-list li span {
    margin-left: 10px;
}